home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form picTest
- BackColor = &H00C0C0C0&
- Caption = "Pic Test"
- ClientHeight = 6435
- ClientLeft = 495
- ClientTop = 780
- ClientWidth = 8625
- Height = 6840
- Icon = PICTEST.FRX:0000
- Left = 435
- LinkTopic = "Form1"
- ScaleHeight = 6435
- ScaleWidth = 8625
- Top = 435
- Width = 8745
- WindowState = 2 'Maximized
- Begin Frame Frame1
- BackColor = &H00C0C0C0&
- Height = 855
- Left = 360
- TabIndex = 0
- Top = 5640
- Width = 4935
- Begin Data picData
- Caption = "Picture Scroller"
- Connect = ""
- DatabaseName = "PICTEST.MDB"
- Exclusive = 0 'False
- Height = 270
- Left = 240
- Options = 0
- ReadOnly = 0 'False
- RecordSource = "picture"
- Top = 360
- Width = 2655
- End
- Begin CommandButton Command1
- Caption = "Exit"
- Height = 495
- Left = 3360
- TabIndex = 1
- Top = 240
- Width = 1215
- End
- End
- Begin Image picImage
- Height = 3615
- Left = 480
- Top = 480
- Width = 3735
- End
- Sub Command1_Click ()
- End
- End Sub
- Sub picData_Reposition ()
- Screen.MousePointer = 11
- ' Make sure this is the current record:
- If Not (picData.Recordset.EOF And picData.Recordset.BOF) Then
- ' Change picture to the name of the OLE field
- ' for the record set you are using:
- DisplayOleBitmap picImage, picData.Recordset("Picture")
- End If
- Screen.MousePointer = 0
- End Sub
-